Linux webm002.cluster126.gra.hosting.ovh.net 6.18.39-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Tue Jul 21 12:03:15 CEST 2026 x86_64
/
home
/
ariannadhf
/
www
/
wp-content
/
plugins
/
code-snippets
/
js
/
/home/ariannadhf/www/wp-content/plugins/code-snippets/js/import.tsx
import React from 'react' import { createRoot } from 'react-dom/client' import { ImportApp } from './components/Import/ImportApp' const importContainer = document.getElementById('import-container') if (importContainer) { const root = createRoot(importContainer) root.render(<ImportApp />) } else { console.error('Could not find import container.') }